home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / boot / netBoot.new / sun4c.md / start.s < prev    next >
Text File  |  1990-12-19  |  3KB  |  120 lines

  1. !
  2. ! The following variable MUST be the first thing in this
  3. ! file, as its position marks the beginning of small data
  4. !
  5.     .seg    "data"
  6.     .global    _environ        ! first symbol in sdata        
  7. _environ:
  8.     .word    0
  9. !
  10. ! This variable is used in the DELAY macro.  5 is the right value for
  11. ! 68010's running 10MHz.  3 is the right value for 68020's running 16MHz
  12. ! with cache on.  (4x as fast at doing the delay loop.)  Other values
  13. ! should be empirically determined as needed.  Srt0.s sets this value
  14. ! based on the actual runtime environment encountered.
  15. !
  16. ! For a sunrise machine with no cache (16Mhz) the delay should be 4
  17. ! if the cache is on the delay can be 1
  18. !
  19. ! It's critical that the value be no SMALLER than required, e.g. the
  20. ! DELAY macro guarantees a MINIMUM delay, not a maximum.
  21. !
  22.     .seg    "data"
  23.     .global    _cpudelay
  24. _cpudelay:
  25.     .word    5            ! Multiplier for DELAY macro.
  26.  
  27.     .seg    "text"
  28.     .align    4
  29. !
  30. ! Startup code for standalone system
  31. !
  32. WINDOWSIZE = (16 * 4)
  33.  
  34.     .global    _end
  35.     .global    _edata
  36.     .global    _main
  37.     .global    __exit
  38.     .global    _startKernel
  39.     .global _romp
  40.     .global    start
  41.     .global realStart
  42. start:
  43.     save    %sp, -WINDOWSIZE, %sp    ! get a new window, leave room for args
  44.     call    1f            ! get the current pc into o7
  45.     nop                ! (where entry is currently located)
  46. 1:
  47.         ba      realStart
  48.         nop
  49.     .skip    (8192)
  50. realStart:
  51.     mov    %o7, %o0        ! save for later
  52.     sub    %o0, 4, %o0        ! point to first byte of prog
  53.     set    start+4,%o6        ! address of call instruction - above 
  54.     cmp    %o6, %o7        ! are they the same
  55.     be    start
  56.     nop
  57.     set    _edata+4, %o2        ! end of program, inclusive, except bss
  58.     set     start, %o1        ! beginning of program
  59.     sub    %o2, %o1, %o2        ! size of program
  60.     !
  61.     ! check that the following copy won't write on itself
  62.     !
  63.     !add    %o7,%o2,%o5
  64.     !cmp    %o5,%o0    
  65.     !bg    cantreloc
  66.     !nop
  67.     !
  68.     ! copy program where it belongs
  69.     !
  70. 2:
  71.     ld    [%o0], %o3        ! read a word
  72.     add    %o0, 4, %o0            ! point to next src word
  73.     st    %o3, [%o1]        ! write a word
  74.     subcc    %o2, 4, %o2            ! check if done
  75.     bge    2b            ! if not loop
  76.     add    %o1, 4, %o1        ! delay slot, point to next dest word
  77.  
  78.     set    go, %g1        ! now that it is relocated, jump to it
  79.     jmp    %g1
  80.     nop
  81.     ! program is now relocated
  82. go:
  83.     ! we should turn on cache at least by now
  84.     set    _romp, %o2
  85.     st    %i0, [%o2]
  86.     set    _end+4, %o2        ! end of bss
  87.     set    _edata, %o0        ! beginning of bss
  88.     sub    %o2, %o0, %o2        ! size of bss
  89.     ! zero the bss
  90. 1:
  91.     subcc    %o2, 1,    %o2            ! loop to zero bss
  92.     st    %g0,[%o0]
  93.     bnz    1b
  94.     add    %o0, 4, %o0
  95.  
  96.     ! general startup code
  97.     set    (_environ+0x1000), %g7    ! 1st global register (etext + 4K)
  98.     set    0x2000, %g6        ! 8k
  99.     add    %g7, %g6, %g6        ! 2nd global register (1st global + 8K)
  100.     ld    [%sp + WINDOWSIZE], %o0    ! argc
  101.     add    %sp, WINDOWSIZE + 4, %o1! argv
  102.     sll    %o0, 2, %o2        ! argc * sizeof (int)
  103.     add    %o2, 4, %o2        ! skip 0 at end of arg ptrs
  104.     add    %o1, %o2, %o2        ! environ ptr
  105.     call    _main
  106.     st    %o2, [%g7 + -0x1000]    ! store 1st word of sdata %ad(_environ)
  107.     nop
  108. #ifdef notdef
  109.     call    _exit            ! exit(0)
  110. #endif
  111.     mov    0, %o0            ! delay slot
  112. __exit:
  113.     ret                ! ret to prom
  114.     restore
  115. _romp:
  116.     .word 0
  117. _startKernel:
  118.     jmp    %o0
  119.     restore
  120.